home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / asm_subr.arc / PUSHPOP < prev    next >
Encoding:
Text File  |  1985-12-27  |  256 b   |  15 lines

  1.     push    di        ; save registers
  2.     push    si
  3.     push    dx
  4.     push    bx
  5.     push    cx
  6.     push    ax
  7. ;
  8.     pop    ax        ; restore registers
  9.     pop    cx
  10.     pop    bx
  11.     pop    dx
  12.     pop    si
  13.     pop    di
  14. ;
  15.